math/big.nat.expNN (method)
8 uses
math/big (current package)
int.go#L599: z.abs = z.abs.expNN(nil, xWords, yWords, mWords, slow)
nat.go#L625: func (z nat) expNN(stk *stack, x, y, m nat, slow bool) nat {
nat.go#L766: z1 := nat(nil).expNN(stk, x, y, m1, false)
nat.go#L767: z2 := nat(nil).expNN(stk, x, y, m2, false)
natconv.go#L492: return z.expNN(stk, nat(nil).setWord(x), nat(nil).setWord(y), nil, false)
prime.go#L108: y = y.expNN(stk, x, q, n, false)
ratconv.go#L184: pow5 := z.b.abs.expNN(stk, natFive, nat(nil).setWord(Word(n)), nil, false) // use underlying array of z.b.abs
ratconv.go#L355: p = nat(nil).expNN(stk, natTen, nat(nil).setUint64(uint64(prec)), nil, false)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |